body{
    /* background-image: linear-gradient(0deg, #212729,   ); */
    background-color: #2a3337;
    background-size: 100% 100vh;
    font-family: Courier, 'Courier New', monospace;
    margin: 0px;
    padding: 0px;
    position: relative;
    background-image: url("../images/bg_blueprint.jpg");
    background-repeat: repeat;
    background-size: 64px 64px;
    background-blend-mode: overlay;
}

.logo{
    font-family: 'Lobster';
    padding: 0px 10px;
    font-size: 28px;
    color: white;
    text-shadow: 0px 0px 5px wheat;
}
.home_btn > img{
 width: 25px;
 height: 25px;
}

input, textarea, select, button, option {
    font-family: Courier, 'Courier New', monospace;
    letter-spacing: -1px;
    border-radius: 5px;
}

.menu_bar{
    background-color: rgb(78, 95, 99);
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(12, max-content);
    position: fixed;
    width: 100vw;
    column-gap: 3px;
}

.message_bar{
    display: grid;
    grid-template-columns: auto max-content;
    /* margin-bottom: 5px; */
}
.message_bar > span{
    pointer-events: none;
}
.message_bar > button{
    padding: 5px;
    margin: 0px;
    width: 27px;
    height: 20px;
    line-height: 9px;
    border-radius: 20px;
}

.message_template{
    background-color: aliceblue;
    display: grid;
    row-gap: 5px;
    width: max-content;
    padding: 5px 5px 5px 5px;
    border-radius: 10px;
    min-width: 230px;
    position: absolute !important;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.426);
}

.msg_data{
    display: grid;
    row-gap: 5px;
}

.new_msg_box{
    display: grid;
    grid-template-columns: auto max-content;
    column-gap: 5px;
}

.message_template textarea{
    resize: vertical;
    min-width: 200px;
    width: 100%;
    box-sizing: border-box;
}

.key_important::placeholder{
    color: rgb(214, 139, 0)
}
.key_important{
    color: rgb(214, 139, 0)
}
.key_important{
    color: rgb(214, 139, 0)
}


.type_select{
    margin-bottom: 10px;
}
#svg_line_container{
    position: absolute;
    pointer-events: none;
}
#new_box_placeholder{
    background-color: rgba(144, 238, 144, 0.618);
    border: 2px dashed lightgreen;
    border-radius: 10px;
    width: max-content;
    width: 240px;
    text-align: center;
    height: 179px;
    align-content: center;
    line-height: 200px;
    position: absolute;
    pointer-events: none;
    display: none;
}

.new_choice_option{
    display: grid;
    row-gap: 2px;
    column-gap: 2px;
    grid-template: "choice_text choice_text"
                    "choice_key choice_delete";
}
.new_choice_option > textarea{
    grid-area: choice_text;
}
.new_choice_option > input{
    grid-area: choice_key;
}
.new_choice_option > button{
    grid-area: choice_delete;
}
.choice_grid{
    display: grid;
    row-gap: 7px;
}
.message_array_div{
    display: grid;
    row-gap: 5px;
}
.error, .error::placeholder{
    background-color: crimson;
    color: white !important;
}
.warning, .warning::placeholder{
    background-color: rgb(220, 197, 20);
    color: crimson !important;
}
#error_count{
    padding: 8px;
}

.new_name_menu{
    position: fixed;
    display: grid;
    background-color: white;
    padding:3px;
    border-radius: 5px;
}

textarea{
    min-height: 30px;
}